func runtime.isSystemGoroutine

9 uses

	runtime (current package)
		heapdump.go#L359: 	dumpbool(isSystemGoroutine(gp, false))
		mprof.go#L1471: 	if isSystemGoroutine(gp1, false) {
		mprof.go#L1517: 		return gp1 != gp && readgstatus(gp1) != _Gdead && !isSystemGoroutine(gp1, false)
		proc.go#L4458: 	if isSystemGoroutine(gp, false) {
		proc.go#L5221: 	if isSystemGoroutine(newg, false) {
		proc.go#L6146: 		if isSystemGoroutine(gp, false) {
		proc.go#L6815: 		return isSystemGoroutine(gp, true)
		traceback.go#L1293: 		if gp == me || gp == curgp || readgstatus(gp) == _Gdead || !showf(gp) || (isSystemGoroutine(gp, false) && level < 2) {
		traceback.go#L1367: func isSystemGoroutine(gp *g, fixed bool) bool {